Feb 27, 2023

Challenge 1: Chipotle Sales


Dataset - See challenge questions below.
Link to GitHub repository, including data and final output.
Click the bottom right corner of the window above to view in full-screen mode.

1. About the dataset
The dataset contains a table of sales transaction at a Chipotle restaurant. A copy of the data dictionary is below.
Column Description
order_id The ID of each order (not unqiue)
quantity Number of item_name ordered
item_name Name of the item ordered
choice_description Ingredients in the item_name
item_price Selling price of the item_name
2. Challenge questions
There are nine questions in total, querying different aspects of the dataset.
  1. Which was the most-ordered item?
  2. For the most-ordered item, how many items were ordered?
  3. What was the most ordered item in the choice_description column?
  4. How many items were ordered in total?
  5. Turn the item price into a float.
  6. How much was the revenue for the period in the dataset?
  7. How many orders were made in the period?
  8. What is the average revenue amount per order?
  9. How many different items are sold?
3. Data cleaning and transformation
  1. Imported the dataset using the link provided through Power Query, checked for null and error values.
  2. Removed "[" and "]" in the item_description column.
  3. Replaced "-" with " " in the item_name column.
4. Results
Each answer had its own Query as presented in the Summary Tab.